Remove focusable-container tests
authorMatthias Clasen <mclasen@redhat.com>
Wed, 8 Apr 2020 12:01:58 +0000 (08:01 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 9 Apr 2020 21:50:29 +0000 (17:50 -0400)
Like the previous commit, these tests were relying
on setting :can-focus to make an unsuspecting container
focusable, which does not work anymore.

testsuite/gtk/focus-chain/focusable-container.tab [deleted file]
testsuite/gtk/focus-chain/focusable-container.tab-backward [deleted file]
testsuite/gtk/focus-chain/focusable-container.ui [deleted file]
testsuite/gtk/meson.build

diff --git a/testsuite/gtk/focus-chain/focusable-container.tab b/testsuite/gtk/focus-chain/focusable-container.tab
deleted file mode 100644 (file)
index 21816d5..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-entry1 GtkText
-box
-entry2 GtkText
-entry3 GtkText
-WRAP
diff --git a/testsuite/gtk/focus-chain/focusable-container.tab-backward b/testsuite/gtk/focus-chain/focusable-container.tab-backward
deleted file mode 100644 (file)
index 46d54a6..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-entry3 GtkText
-entry2 GtkText
-box
-entry1 GtkText
-WRAP
diff --git a/testsuite/gtk/focus-chain/focusable-container.ui b/testsuite/gtk/focus-chain/focusable-container.ui
deleted file mode 100644 (file)
index e6d2947..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<interface>
-  <object class="GtkWindow" id="window">
-    <child>
-      <object class="GtkBox">
-        <child>
-          <object class="GtkEntry">
-            <property name="name">entry1</property>
-          </object>
-        </child>
-        <child>
-          <object class="GtkBox">
-            <property name="name">box</property>
-            <property name="can-focus">1</property>
-            <child>
-              <object class="GtkEntry">
-               <property name="name">entry2</property>
-              </object>
-            </child>
-            <child>
-              <object class="GtkEntry">
-               <property name="name">entry3</property>
-              </object>
-            </child>
-          </object>
-        </child>
-      </object>
-    </child>
-  </object>
-</interface>
index f388022cc9276f86ae565e09d5112b3a1c3f6657..6855937b85ccab57cd636c8b244c5ae604e7d6de 100644 (file)
@@ -157,14 +157,13 @@ if add_languages('cpp', required: false)
   endif
 endif
 
+
 focus_chain_tests = [
   # test     direction
   [ 'basic', 'tab' ],
   [ 'basic', 'tab-backward' ],
   [ 'basic', 'left' ],
   [ 'basic', 'right' ],
-  [ 'focusable-container', 'tab' ],
-  [ 'focusable-container', 'tab-backward' ],
   [ 'widget-factory', 'tab' ],
   [ 'widget-factory', 'tab-backward' ],
   [ 'widget-factory', 'up' ],